 *{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    box-sizing: border-box;
 }

 .container1 {
    box-sizing: content-box;
    background-color: rgb(123,66,138);
    padding: 18px 0 0 0;
    height: 85px;
    border-radius: 0px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    }

.cart{
    background-color: rgb(79, 49, 107);
    border-radius: 10px;
    font-size: medium;
    padding: 4% 0 4% 8%;
    margin: 1%;
    text-align: left;
}

.LIST {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    font-size: medium;
    margin: 20px;
    margin-left: 120px;
    left:1260px;
    top: 20px;
    }

.nav-item {
    margin: 0 10px;
}
    
html
{
overflow-x: hidden;
}

a{
    color: rgb(210, 157, 221);
    text-decoration: none
}
nav a:hover{
    color:rgb(244, 215, 255);
}





body{
    margin: 0;
    background-image: url("./Img/Sem título12.png");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.logoImg{
    margin: 0 1% 1% 1%;
    text-align: center;
    width: 7%;
    height: 90%;
}

#logo, #BackPNG{
    width: 100%;
    height: 100%;
}

.BG{
    text-align: center;
    width: 750px;
    margin: 0 0 1% 4%;
}

.shopcart{
    margin: 10px 80px auto auto;
    width: 190px;
}

.shopContainer{
    background-color: #ededed;
    margin: 8%;
    padding: 0 0 2% 0;
}

.shopContainer h2, .shopContainer h2 mark{
    font-family: 'Times New Roman', Times, serif;
    font-weight: normal;
}

.shopDisplay{
    display: flex;
    justify-content: space-around;
}

.Container1{
    padding: 1%; 
    width: 40%;
}

.Container2{
    text-align: left; 
    padding: 1%;
    width: 100%;
    margin: 0 0 0 5%;
}

.inputsAlignment{
    display: flex;
}


.inputs{
    width: 24%;
    margin: 0 4% 0 1%;
}

.buttons1{
    display: flex;
    justify-content: space-between;
}

h1{
    font-family: 'Times New Roman', Times, serif;
    font-weight: lighter;
    letter-spacing: 1px;
    margin: 0 0 8% 0;
}

h2{
    background-color: #000000;
    padding: 1.5%;
    margin: 0;
    color: #ffffff;
    letter-spacing: 2px;
}

h3{
    font-family: 'Times New Roman', Times, serif;
    font-weight: 500;
    font-size: 20px;
    margin: 5% 5% 5% 0;
}

p{
    font-size: 17px;
}

mark{
    color: #ffffff;
    font-size: 16px;
    background: none;
    margin: 0 3% 0 3%;
    vertical-align: 8%;
}

input{
    width: 100%;
    padding: 2%;
    margin: 0 0 7% 0;
    text-align: left;
    font-size: 16px;
}


button{
    background-color: rgb(123,66,138);
    border: none;
    font-family: cursive;
    font-weight: bold;
    color: rgb(234, 211, 238);
    cursor: pointer;
}

.inputs button{
    padding: 7%;
}

.Container1 button:last-of-type{
    padding-left: 4%;
    padding-right: 4%;
}

button:hover{
    color: rgb(255, 255, 255);
    box-shadow: 3px 3px 0 0 #000000;
    position: relative;
    animation-name: button-animation;
    animation-duration: 0.4s;
    animation-iteration-count: infinite;
}

button:active{
    background-color: rgb(87, 45, 97);
    color: rgb(255, 255, 255);
    transform: translateY(2px) translateX(2px);
    animation: none;
    box-shadow: none;
}

@keyframes button-animation{
    0%   {
        top: 0px;
    }
    25% {
        top: -4px;
    }
    50% {
        top: 0px;
    }
}

.buttonW{
    padding: 4%;
    background-color: #bebebe;
    color: #000000;
}

.buttonW:hover{
    color: #000000;
}

.buttonW:active{
    background-color: #a1a1a1;
    color: #000000;
}

#cartTotal{
    font-family: fantasy;
}